mp_linear_step_object

语法:

mp_linear_step_object(xgoal, ygoal, stepsize, obj);


参数 描述
xgoal The target x position.
ygoal The target y position.
stepsize The speed the instance moves in pixels per step.
obj The object that is to block the path. Can be an object index, an instance id or the special keyword, all


返回: Boolean(布尔值)


描述

With this function you tell an instance to take a "step" towards a specific point, specified by the xgoal and ygoal values. The size of the step (which is how many pixels the instance should move each step) is indicated by the stepsize, and if the instance is already at the position it will stop and not move any further, contrary to other, simpler functions like move_towards_point. The stepsize is also the distance "ahead" that the object will check each step for a collision, and you can choose whether the instance stops at a collision with an object or instance of your choice.


例如:

if mp_linear_step_object(mouse_x, mouse_y, 5, obj_Wall)
   {
   instance_create_layer(x, y, "Effects", obj_Explosion);
   instance_destroy();
   }

The above code will make the object move towards the mouse at a speed of 5 pixels per step, only checking for collisions with the object "obj_Wall". Once it reaches the mouse position it will create an object "obj_Explosion" and destroy itself.